home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_07_01 / v7n1026a.txt < prev    next >
Text File  |  1989-02-13  |  2KB  |  83 lines

  1. Sample #1
  2.  
  3. Partial output from Sherlock with two tracepoint names activated
  4.  
  5.  
  6.       Enabling trace of malloc
  7.       Enabling trace of put*
  8.  
  9.       .makeitem: (254B:9F90, Folders, 160)
  10.          Malloc returns: 354C:0220
  11.       .makeitem: returns 0
  12.  
  13.       put2list: (254B:9FEE, 0, 160)
  14.       .putnxt2list: (254B:9FEE, 0, 160)
  15.       ..val_2list: (0)
  16.       ..val_2list: returns 0
  17.       ..makeitem: (254B:9F90, CrossTalk Log Ons, 160)
  18.          Malloc returns: 354C:02D0
  19.       ..makeitem: returns 0
  20.       .putnxt2list: returns 0
  21.       put2list: leaves
  22.  
  23.  
  24.  
  25.  
  26.  
  27. Sample #2
  28.  
  29. Partial output from Sherlock with two malloc, free, do_list activated. 
  30.  
  31.  
  32.       Enabling trace of malloc
  33.       Enabling trace of free
  34.       Enabling trace of do_list
  35.  
  36.       Malloc returns: 3549:0220
  37.       Malloc returns: 3549:02D0
  38.       Malloc returns: 3549:0380
  39.       Malloc returns: 3549:0430
  40.       Malloc returns: 3549:04E0
  41.       Malloc returns: 3549:0590
  42.       Malloc returns: 3549:0640
  43.       Malloc returns: 3549:06F0
  44.       do_list: (0, 2, 5, 18, 45, 2548:A032, 2548:9FFE, 2548:A000,
  45. FOLDERS, )
  46.       do_list: returns 13
  47.       Free: 3549:0220
  48.       Free: 3549:02D0
  49.       Free: 3549:0590
  50.       Free: 3549:0380
  51.       Free: 3549:06F0
  52.       Free: 3549:0640
  53.       Free: 3549:0430
  54.       Free: 3549:04E0
  55.  
  56.  
  57.  
  58.  
  59. Sample #3
  60.  
  61. Simulated Sherlock output when tracing file open/close activity. 
  62.  
  63.  
  64.       Enabling trace of openfile
  65.       Enabling trace of closefile
  66.  
  67.       openfile: (0, 2, FILE1.DTA )
  68.       openfile: returns 1
  69.       closefile: (1, 2, FILE1.DTA )
  70.       closefile: returns 1
  71.       openfile: (0, 2, FILE2.DTA )
  72.       openfile: returns 1
  73.       openfile: (0, 2, FILE3.DTA )
  74.       openfile: returns 1
  75.       closefile: (1, 2, FILE2.DTA )
  76.       closefile: returns 1
  77.       openfile: (0, 2, FILE4.DTA )
  78.       openfile: returns 1
  79.       closefile: (1, 2, FILE3.DTA )
  80.       closefile: returns 1
  81.  
  82.  
  83.